home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / September 93.iso / Archives / Utilities / Security - care / Encrypt / RIPEM Mac 0.8b2 / Change History < prev    next >
Text File  |  1993-06-18  |  2KB  |  34 lines

  1. Change Notes
  2.  
  3. 0.8b2
  4.  
  5. Changes notes are new as of this version.
  6.  
  7. Added support for triple DES (Ek1 Dk2 Ek3 mode treated as an ECB cipher with
  8.    CBC done on its final output.  DES-EDE-CBC will represent this.  It actually
  9.    stores 3 keys and will support Ek1 Dk2 Ek3 on decrypt but bec. there may be
  10.    hardware which supports only 2 keys, we always encrypt w/2 keys.)
  11. Updated random number generator to have 256 bits of internal state.  We need
  12.    112 bits for triple DES along with 64 for IV.  While the old generator
  13.    is probably sufficient as one cannot easily derive the internal state from
  14.    the output, this is done just to be safe.
  15. Fixed bug in handling DN/PubComp only entries in the PublicDirectory.
  16.    Any certificates after such an entry are treated as DN/PubComp only.
  17.    (Therefore, path tracing cannot complete.)
  18. Updated bootstrap and docs to cover new TIS certificate, new RSA Low Assurance
  19.    certificate.
  20. Added support for decoding stuff like "Proc-Type:4,MIC-ONLY" w/o a space
  21.    after the colon.
  22. Fixed bug in DER coding of multiple values per attribute in the case where
  23.    one value's length may be coded in a different number of bytes from another
  24.    value's length, the sorting (required for DER) was done on the values
  25.    (so the shorter one comes first) instead of the coding of the type/value
  26.    sequence.  (The 2 byte version's first byte may have a lower value and
  27.    hence may come first!)  I doubt if anyone will use values long enough
  28.    for this bug to show itself, but it's been fixed.
  29. Fixed bug which may cause occassional EBBE problem when decoding certificates.
  30. Expanded DistinguishedName handling code to handle many AVAs per RDN and
  31.    expanded display code to show a ";" after the last AVA in a RDN and a ","
  32.    after other AVAs in a RDN.
  33. Create self-signed with 2 OUs wasn't generating a correct DN.  It placed
  34.    both OU AVAs in a single RDN instead of in 2 RDNs.